home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / turbovis / tvutil01.zip / ALEXLEVI.EXE / ALEXLEVI / DOC / MYHELP.TXT < prev    next >
Text File  |  1994-02-07  |  49KB  |  1,356 lines

  1.  
  2. ;
  3. ; Alex Levitas' Utilities Help
  4. ;
  5.  
  6.  ▄ Programmer Calculator
  7.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  8.  
  9. The calculator is a simple programmer calculator with add, subtract,
  10. multiply, divide, arithmetic shift left/right, and bitwise AND , OR, XOR and
  11. NOT operations. There are also 4 radixes: decimal, hexadecimal, octal and
  12. binary. To operate the calculator you can either use the keyboard or click the
  13. buttons on the calculator with the mouse.  The BackSpace key will erase the
  14. last character typed. The '«' and '»' keys will shift value left/right (the
  15. keyboard equivalent of '«'/'»' is Ctrl-Left-Arrow/Ctrl-Right-Arrow). The '±'
  16. key toggles the value from positive to negative (the keyboard equivalent of
  17. '±' is '_').
  18.  
  19. ;------------------------------------------------------------------------------
  20.  
  21.  ▄ NoteBook
  22.  ▀▀▀▀▀▀▀▀▀▀▀
  23.  
  24. The notebook is a combination of text editor and calendar that allows
  25. to edit a separate page for each day of the year. For January 1st open
  26. 1st page, for January 2nd - 2nd page etc. January 1st of the next year
  27. will also open the 1st page, i.e., you can write notes only for a single
  28. year.
  29.  
  30. The NoteBook contains:
  31.  
  32.  ■ the editor window
  33.  ■ the calendar
  34.  ■ the 'Clear' button
  35.  ■ the 'Save' button
  36.  
  37.  ▄ The Edit Window
  38.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  39.  
  40. The edit window is where you type in and edit notebook page. Editing
  41. keys are similar to Turbo Pascal.
  42.  
  43.           ┌─ Date indicator
  44.           
  45.     ┌ 30-Aug-93 ──────────────────────────────────┐
  46.     │                                             
  47.     │                                             ▓
  48.     │                                             ▓
  49.     │                                             ▓
  50.     │                                             ▓
  51.     │                                             ▓
  52.     │                                             ▓
  53.     │                                             ▓
  54.     │                                             ▓
  55.     │                                             ▓
  56.     │                                             ▓
  57.     │                                             ▓
  58.     │                                             ▓
  59.     │                                             
  60.     └─── YY:XX ─────■▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒─┘
  61.            
  62.        │    └────────── Position Indicator
  63.  Modification Indicator
  64.  
  65. Date indicator shows the date being edited (notebook page).
  66.  
  67. Position indicator at the bottom of the edit window frame shows the
  68. cursor's position (the current line and column number) as YY:XX ,
  69. where YY is the line number and XX is the column number.
  70.  
  71. If editing text was modified, a '' character (the modification indicator)
  72. will be displayed at the bottom of the edit window frame.
  73.  
  74.  See also:
  75.  
  76.   Editor commands
  77.  
  78.  ▄ Insert & Delete Commands
  79.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  80. ══════════════════════╤══════════════════════
  81.  Insert mode on/off   │ Ctrl+V or Ins
  82.  Delete line          │ Ctrl+Y
  83.  Delete to end of line│ Ctrl+Q Y
  84.  Delete character left│ Ctrl+H or Backspace
  85.  Delete character     │ Ctrl+G or Del
  86.  Delete word right    │ Ctrl-T
  87.  
  88.  ▄ Cursor Movement Commands
  89.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  90. ═════════════════╤══════════════════════
  91.  Character left  │ Ctrl+S or Left arrow
  92.  Character right │ Ctrl+D or Right arrow
  93.  Word left       │ Ctrl+A or Ctrl+Left arrow
  94.  Word right      │ Ctrl+F or Ctrl+Right arrow
  95.  Line up         │ Ctrl+E or Up arrow
  96.  Line down       │ Ctrl+X or Down arrow
  97.  Page up         │ Ctrl+R or PgUp
  98.  Page down       │ Ctrl+C or PgDn
  99.  
  100.  ▄ Block Commands
  101.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  102. ══════════════════════════╤══════════════════════
  103.  Mark block begin         │ Ctrl+K B
  104.  Mark block end           │ Ctrl+K K
  105.  Mark single word         │ Ctrl+K T
  106.  Delete block             │ Ctrl+K Y
  107.  Copy to clipboard        │ Ctrl+Ins
  108.  Cut to clipboard         │ Shift+Del
  109.  Delete block             │ Ctrl+Del
  110.  Paste to clipboard       │ Shift+Ins
  111.  
  112.  ▄ Miscellaneous Editor Commands
  113.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  114. ══════════════════════╤══════════════════════
  115.  Menu bar             │ F10
  116.  Close active window  │ Alt+F3
  117.                       │
  118.  Tab                  │ Ctrl+I or Tab
  119.                       │
  120.  Find                 │ Ctrl+Q F
  121.  Find & Replace       │ Ctrl+Q A
  122.  Repeat last find     │ Ctrl+L
  123.  Abort operation      │ Esc
  124.  
  125.  ▄ The Calendar
  126.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  127.  
  128. The calendar shows the current date and notebook page and allows to select
  129. another date. Use mouse or arrow keys to select needed day. Clicking the
  130. mouse on the Up Arrow, pressing '-' key, or PgUp key jump month back.
  131. Clicking the mouse on the Down Arrow down, pressing '+' key, or PgDn key
  132. jump month ahead.
  133.  
  134.  ▄ The 'Clear' Button
  135.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  136.  
  137. The 'Clear' button clears editing notebook page.
  138.  
  139.  ▄ The 'Save' Button
  140.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  141.  
  142. The 'Save' button saves editing notebook page.
  143.  
  144. ;------------------------------------------------------------------------------
  145.  
  146.  ▄ Print Manager
  147.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  148.  
  149. This utility allows printing text files or editor windows with different
  150. fonts. Supports also underlining and emphasizing.
  151.  
  152. The print manager contains:
  153.  
  154.  ■ the 'Letters' radio button
  155.  ■ the 'From' radio button
  156.  ■ the 'Language is Case-Sensitive' check box
  157.  ■ the 'Emphasized' list
  158.  ■ the 'Underlined' list
  159.  ■ the 'Menu' button
  160.  ■ the 'Print' button
  161.  
  162.  ▄ The 'Letters' Radio Button
  163.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  164.  
  165. The 'Letters' radio button determines the type of letters to print. May
  166. select one of three fonts:
  167.  
  168.  (■) Draft - normal printer font
  169.  ( ) Bold  - quality double-strike font
  170.  ( ) Small - quality double-strike compressed font - 132 characters/line
  171.  
  172.  ▄ The 'From' Radio Button
  173.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  174.  
  175. The 'From' radio button determines what will be printed. May select
  176. one of three options:
  177.  
  178.  (■) Editor  Window - print contents of last active editor window
  179.  ( ) Selected  Text - print selected text from last active editor window
  180.  ( ) Disk Text File - print contents of text file
  181.  
  182.  ▄ The 'Language is Case-Sensitive' Check Box
  183.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  184.  
  185. If 'Emphasized' and 'Underlined' lists are not empty then before
  186. printing each word will be compared with each pattern in this lists.
  187. The 'Language is Case-Sensitive' check box determines if this check will
  188. be case-sensitive.
  189.  
  190.  ▄ The 'Emphasized' List
  191.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  192.  
  193. If 'Emphasized' list is not empty then each word before printing will
  194. compared with each pattern of 'Emphasized' list and the equal words
  195. will be printed emphasized. To add a new pattern press
  196. Insert key and enter pattern. To delete pattern press Delete key. Pattern
  197. can contain '*' and '?' wildcard characters, where '*' may be any
  198. number of any characters (or none) and '?' may be any one character.
  199.  
  200.  See also:
  201.  
  202.   'Underlined' List
  203.   'Language is Case-Sensitive' Check Box
  204.  
  205.  ▄ The 'Underlined' List
  206.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  207.  
  208. If 'Underlined' list is not empty then each word before printing will
  209. compared with each pattern of 'Underlined' list and the equal words
  210. will be printed underlined. To add a new pattern press
  211. Insert key and enter pattern. To delete pattern press Delete key. Pattern
  212. can contain '*' and '?' wildcard characters, where '*' may be any
  213. number of any characters (or none) and '?' may be any one character.
  214.  
  215.  See also:
  216.  
  217.   'Emphasized' List
  218.   'Language is Case-Sensitive' Check Box
  219.  
  220.  ▄ The 'Menu' Button
  221.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  222.  
  223. The 'Menu' button opens the print manager menu.
  224.  
  225.  ▄ The 'Print' Button
  226.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  227.  
  228. The 'Print' button start printing according to defines. The message
  229. 'Printing process' is displayed at print time. If printing isn't
  230. possible, an error message will be displayed.
  231.  
  232.  ▄ Menu│Load 'Emphasized' List
  233.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  234.  
  235. Load text file where each line in file is a pattern for the
  236. 'Emphasized' list. Old list items will cleared.
  237.  
  238.  ▄ Menu│Save 'Emphasized' List
  239.  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  240.  
  241. Save 'Emphasized' list into text file where each line in file is a pattern
  242. from the 'Emphasized' list. If 'Language is Case-Sensitive' che